home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac: Not for Sale / Another.not.for.sale (Australia).iso / fade into you / getting there / Apps / MOO-1.7.6.src / inc / my-tiuser.h < prev    next >
Text File  |  1994-11-02  |  2KB  |  55 lines

  1. /******************************************************************************
  2.   Copyright (c) 1992 Xerox Corporation.  All rights reserved.
  3.   Portions of this code were written by Stephen White, aka ghond.
  4.   Use and copying of this software and preparation of derivative works based
  5.   upon this software are permitted.  Any distribution of this software or
  6.   derivative works must comply with all applicable United States export
  7.   control laws.  This software is made available AS IS, and Xerox Corporation
  8.   makes no warranty about the software, its performance or its conformity to
  9.   any specification.  Any person obtaining a copy of this software is requested
  10.   to send their name and post office or electronic mail address to:
  11.     Pavel Curtis
  12.     Xerox PARC
  13.     3333 Coyote Hill Rd.
  14.     Palo Alto, CA 94304
  15.     Pavel@Xerox.Com
  16.  *****************************************************************************/
  17.  
  18. #include "config.h"
  19.  
  20. #include <tiuser.h>
  21.  
  22. #if NDECL_T_OPEN
  23. extern int    t_accept(int, int, struct t_call *);
  24. extern void    *t_alloc(int, int, int);
  25. extern int    t_bind(int, struct t_bind *, struct t_bind *);
  26. extern int    t_close(int);
  27. extern int    t_connect(int, struct t_call *, struct t_call *);
  28. extern int    t_listen(int, struct t_call *);
  29. extern int    t_open(const char *, int, struct t_info *);
  30.  
  31. extern int    t_errno;
  32. #endif
  33.  
  34. #if NDECL_T_ERRLIST
  35. extern char    *t_errlist[];
  36. #endif
  37.  
  38. /* $Log: my-tiuser.h,v $
  39.  * Revision 1.5  1993/10/11  19:09:23  pavel
  40.  * Separated out the check for an undeclared t_errlist, since Solaris, for one,
  41.  * declares everying *but* that...
  42.  *
  43.  * Revision 1.4  1992/10/23  23:03:47  pavel
  44.  * Added copyright notice.
  45.  *
  46.  * Revision 1.3  1992/10/21  03:02:35  pavel
  47.  * Converted to use new automatic configuration system.
  48.  *
  49.  * Revision 1.2  1992/10/17  20:41:40  pavel
  50.  * Added some more system-dependent #if's.
  51.  *
  52.  * Revision 1.1  1992/10/06  01:40:02  pavel
  53.  * Initial RCS-controlled version.
  54.  */
  55.